home *** CD-ROM | disk | FTP | other *** search
/ mail.altrad.com / 2015.02.mail.altrad.com.tar / mail.altrad.com / TEST / office deutch / INFOPATH.NL-NL / INFLR.CAB / FL_ForNext_Integerloop__snippet_142585_ENU____.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Extensible Markup Language  |  2005-10-28  |  1KB  |  44 lines

  1. ∩╗┐<?xml version="1.0" encoding="UTF-8"?>
  2. <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  3.   <CodeSnippet Format="1.0.0">
  4.     <Header>
  5.       <Title>For...Next Statement</Title>
  6.       <Author>Microsoft Corporation</Author>
  7.       <Description>Loops through a sequence of numbers.</Description>
  8.       <Shortcut>For</Shortcut>
  9.     </Header>
  10.     <Snippet>
  11.       <Imports>
  12.       </Imports>
  13.       <Declarations>
  14.         <Literal>
  15.           <ID>LowerBound</ID>
  16.           <Type>Integer</Type>
  17.           <ToolTip>Replace with an Integer value.</ToolTip>
  18.           <Default>1</Default>
  19.         </Literal>
  20.         <Literal>
  21.           <ID>UpperBound</ID>
  22.           <Type>Integer</Type>
  23.           <ToolTip>Replace with an Integer value.</ToolTip>
  24.           <Default>10</Default>
  25.         </Literal>
  26.         <Literal>
  27.           <ID>Variable</ID>
  28.           <Type>Object</Type>
  29.           <ToolTip>Replace with the counter variable name.</ToolTip>
  30.           <Default>index</Default>
  31.         </Literal>
  32.         <Literal>
  33.           <ID>CounterType</ID>
  34.           <Type>Object</Type>
  35.           <ToolTip>Replace with a numeric type.</ToolTip>
  36.           <Default>Integer</Default>
  37.         </Literal>
  38.       </Declarations>
  39.       <Code Language="VB" Kind="method body"><![CDATA[For $Variable$ As $CounterType$ = $LowerBound$ To $UpperBound$
  40.  
  41. Next]]></Code>
  42.     </Snippet>
  43.   </CodeSnippet>
  44. </CodeSnippets>